* {
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 140px;
}

body {
    background-color: #F6F6F6;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #F6F6F6;
    z-index: 997;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header nav>div {
    transition: padding 0.3s ease;
}

header.scrolled nav>div {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

main {
    padding-top: 120px;
}

br {
    display: none;
}

@media (min-width: 400px) {
    br {
        display: block;
    }
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: #8F08CE;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

#hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Offcanvas */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: #F6F6F6;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.offcanvas.active {
    right: 0;
}

.close-offcanvas {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8F08CE;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offcanvas-content {
    padding: 20px 30px 30px;
}

.offcanvas-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offcanvas-link {
    display: block;
    color: #333;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.offcanvas-link:hover {
    color: #8F08CE;
    padding-left: 0.5rem;
}

.offcanvas-social {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

a.bg-primary,
a.destination-btn {
    display: inline-block;
    transition: all 0.4s ease !important;
}

a.bg-primary:hover,
a.destination-btn:hover {
    transform: scale(1.03) !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.hero-banner {
    background-image: url('/assets/images/hero-banner-1.webp');
    background-position: center;
}

@media (max-width: 410px) {
    .hero-banner {
        background-position: 38% center;
    }
}

/* Floating Animation */
@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floating-horizontal {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-20px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.floating-horizontal {
    animation: floating-horizontal 3s ease-in-out infinite;
    animation-delay: 2s;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

#parks-slider .splide__slide {
    height: auto;
}

#parks-slider .splide__list {
    align-items: stretch;
}

#parks-slider .splide__slide>div {
    height: 100%;
    display: grid;
    min-height: 320px;
}

#parks-slider .splide__slide img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 640px) {
    #parks-slider .splide__slide {
        max-width: 350px;
        display: flex;
    }

    #parks-slider .splide__slide>div {
        min-height: auto;
    }

    #parks-slider .splide__slide img {
        height: 250px;
        width: 100%;
    }
}

@media (max-width: 640px) {

    .circle-top {
        top: 250px;
        left: 0;
    }

    .circle-bottom {
        top: 218px;
        left: 100%;
    }
}

.skills-cards .card:hover {
    transition: all 0s ease !important;
    border: 1px dashed #8F08CE;
}